home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 1.6 KB | 74 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _CLIPBDB_
- #define _CLIPBDB_
-
- #ifndef _ODOBJECT_
- #include "ODObject.idl"
- #endif
-
- //=====================================================================================
- // Classes defined in this interface
- //=====================================================================================
-
- interface ODBaseClipboard;
-
- //=====================================================================================
- // Classes used by this interface
- //=====================================================================================
-
- interface ODStorageUnit;
- interface ODDraft;
- interface ODDocument;
- interface ODContainer;
- interface ODSession;
- interface ODPlatformTypeList;
-
- //=====================================================================================
- // ODClipboard
- //=====================================================================================
-
-
- interface ODBaseClipboard : ODObject
- {
- ODBoolean Lock(in ODULong wait,
- in ODClipboardKey key);
-
- void Unlock(in ODClipboardKey key);
-
- ODChangeID GetChangeID();
-
- void Clear(in ODClipboardKey key);
-
- ODStorageUnit GetContentStorageUnit(in ODClipboardKey key);
-
- void SetPlatformClipboard(in ODPlatformTypeList typeList,
- in ODClipboardKey key);
-
- void ExportClipboard(in ODClipboardKey key);
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit;
-
- releaseorder:
- Lock,
- Unlock,
- GetChangeID,
- Clear,
- GetContentStorageUnit,
- SetPlatformClipboard,
- ExportClipboard,
- reserved1;
-
- majorversion = 1; minorversion = 0;
-
- };
- #endif
- };
-
- #endif // _CLIPBDB_
-